home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 745 / arexxbox / test / test.h < prev    next >
C/C++ Source or Header  |  1995-03-18  |  1KB  |  57 lines

  1. #ifndef TEST_H
  2. #define TEST_H
  3.  
  4. #include <exec/types.h>
  5. #include <exec/memory.h>
  6. #include <exec/libraries.h>
  7. #include <exec/lists.h>
  8.  
  9. #include <dos/dos.h>
  10. #include <workbench/startup.h>
  11. #include <workbench/workbench.h>
  12.  
  13. #ifdef __GNUC__
  14. /* GCC needs all struct defs */
  15. #include <dos/exall.h>
  16. #include <graphics/graphint.h>
  17. #include <intuition/classes.h>
  18. #include <devices/keymap.h>
  19. #include <exec/semaphores.h>
  20. #endif
  21.  
  22. #include <clib/alib_protos.h>
  23. #include <clib/exec_protos.h>
  24. #include <clib/dos_protos.h>
  25. #include <clib/icon_protos.h>
  26. #include <clib/rexxsyslib_protos.h>
  27.  
  28. #ifndef __NO_PRAGMAS
  29.  
  30. #ifdef AZTEC_C
  31. #include <pragmas/exec_lib.h>
  32. #include <pragmas/dos_lib.h>
  33. #include <pragmas/icon_lib.h>
  34. #include <pragmas/rexxsyslib_lib.h>
  35. #endif
  36.  
  37. #ifdef LATTICE
  38. #include <pragmas/exec_pragmas.h>
  39. #include <pragmas/dos_pragmas.h>
  40. #include <pragmas/icon_pragmas.h>
  41. #include <pragmas/rexxsyslib_pragmas.h>
  42. #endif
  43.  
  44. #endif /* __NO_PRAGMAS */
  45.  
  46. #include <stdlib.h>
  47. #include <stdio.h>
  48. #include <string.h>
  49. #include <fcntl.h>
  50. #include <ctype.h>
  51.  
  52. #ifndef _toupper
  53. #define _toupper(x) ((x) & 0x5f)
  54. #endif
  55.  
  56. #endif /* TEST_H */
  57.